www.gusucode.com > 蓝色简洁通用石墨材料网站源码 企业通用织梦dedecms模板(demo270)源码程序 > 蓝色简洁通用石墨材料网站源码 企业通用织梦dedecms模板(demo270)源码程序/www3/member/templets/js/base.js

    $(function(){
		//文本框Style
		$(".text").mouseover(function(){
			$(this).addClass("text_o");
		}).mouseout(function(){
			$(this).removeClass("text_o");
		}).focus(function(){
			$(this).addClass("text_s");
		}).blur(function(){
			$(this).removeClass("text_s");
		});
		$(".intxt").mouseover(function(){
			$(this).addClass("text_o");
		}).mouseout(function(){
			$(this).removeClass("text_o");
		}).focus(function(){
			$(this).addClass("text_s");
		}).blur(function(){
			$(this).removeClass("text_s");
		});
		
 })